home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
8823
/
8823.xpi
/
chrome
/
omnibar
/
content
/
options.js
< prev
next >
Wrap
Text File
|
2009-09-05
|
444b
|
18 lines
var Options = {
commitChanges: true,
init: function() {
},
done: function() {
},
updateDependents: function(conditionId) {
var pref = document.getElementById(conditionId).getAttribute('preference');
var disable = !document.getElementById(pref).value;
var els = document.getElementsByAttribute("dependson", conditionId);
for(var i = 0; i < els.length; i += 1) {
els[i].disabled = disable;
}
}
}